Reduced Row Echelon (RREF)

Introduction

Reduced Row Echelon Form (RREF) is a powerful way to simplify a system of linear equations so that the solutions become obvious.
Since you already know Row Echelon Form (REF), you can think of RREF as “REF, but cleaner and more decisive.”

RREF helps you:

What is RREF?

A matrix is in Reduced Row Echelon Form (RREF) when:

To see what this means, let’s compare a matrix in REF with its fully simplified RREF version.

Example: REF vs RREF

Matrix in REF (Row Echelon Form)

$$\left[ \begin{array}{cc|c} 1 & 2 & 5 \\ 0 & 1 & 1 \\ 0 & 0 & 0 \end{array} \right]$$ Why this is REF:

For example, the first row still has a “2” above the pivot in column 2.

Matrix in RREF (Reduced Row Echelon Form)

$$\left[ \begin{array}{cc|c} 1 & 0 & 3 \\ 0 & 1 & 1 \\ 0 & 0 & 0 \end{array} \right]$$ Why this is RREF:

This is the “cleanest possible” form of the system.

Summary of the contrast

FeatureREFRREF
Pivots move right as you go down✔️✔️
Zeros below pivots✔️✔️
Pivots must be 1✔️
Pivots must be the only nonzero entry in their column✔️
Back‑substitution required✔️
Solutions readable immediately✔️

Why RREF is Useful

RREF makes solutions easy to read:

RREF removes the need for back‑substitution because the matrix is already fully simplified.

How to Compute RREF

Start from REF and continue simplifying:

1. Make each pivot equal to 1

If a pivot is $k$, divide the entire row by $k$.

2. Clear the column above each pivot

Use row operations to make all entries above the pivot equal to 0.

3. Clear the column below each pivot

(You already did this when forming REF.)

4. Move to the next pivot

Repeat until all pivots are clean and isolated.

A Simple Example

Consider the system: $$\left[ \begin{array}{cc|c} 1 & 2 & 5 \\ 2 & 4 & 10 \end{array} \right]$$ Steps:

This is already in RREF because:

This tells us:

Example: From REF to RREF (pivots need scaling)

Start with this REF augmented matrix: $$\left[ \begin{array}{cc|c} 2 & 4 & 6 \\ 0 & 3 & 9 \end{array} \right]$$ This corresponds to:

Why this is REF:

Step 1: Scale the pivots to 1

We get: $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 0 & 1 & 3 \end{array} \right]$$ Now both pivots are 1.

Step 2: Clear above the pivot in column 2

Pivot: the $1$ in row 2, column 2.
Row 1 has a 2 above it.

Compute:

So the matrix becomes: $$\left[ \begin{array}{cc|c} 1 & 0 & -3 \\ 0 & 1 & 3 \end{array} \right]$$

Final RREF

$$\left[ \begin{array}{cc|c} 1 & 0 & -3 \\ 0 & 1 & 3 \end{array} \right]$$ This is RREF:

Interpreting the solution

Let the variables be $x$ and $y$.

From the RREF:

So the system has a single unique solution: $$(x, y) = (-3,\ 3)$$

Example (No solution)

REF matrix

Start with: $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 2 & 4 & 10 \end{array} \right]$$ This corresponds to:

Step 1: Put into REF

Eliminate the $2$ below the first pivot:

Compute Row 2:

So we get: $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 0 & 0 & 4 \end{array} \right]$$ This is REF.

Step 2: Interpret the RREF (it’s already “reduced enough”)

The second row says: $$0x + 0y = 4$$ which simplifies to: $$0 = 4$$ This is impossible, so the system has no solution.

In RREF language:

Calculator

Calculating the RREF

  • To calculate the reduced row echelon form we use the $\operatorname{rref}()$ function
rref([2, 4, 6; 0, 3, 9]) rref([3, 6, 9; 0, 2, 4])

Exercises

  1. Reduce the REF matrix $$\left[ \begin{array}{cc|c} 2 & 4 & 6 \\ 0 & 3 & 9 \end{array} \right]$$ to RREF and state the solution.

    Solution

    One solution

    Matrix: $$\left[ \begin{array}{cc|c} 2 & 4 & 6 \\ 0 & 3 & 9 \end{array} \right]$$

    • Row 1 → Row 1 ÷ $2$
    • Row 2 → Row 2 ÷ $3$ $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 0 & 1 & 3 \end{array} \right]$$

    Clear above pivot in column 2:

    • Row 1 → Row 1 $- 2$·Row 2

    Final RREF: $$\left[ \begin{array}{cc|c} 1 & 0 & -3 \\ 0 & 1 & 3 \end{array} \right]$$ Solution: $(x, y) = (-3, 3)$.

  2. Reduce the REF matrix $$\left[ \begin{array}{cc|c} 1 & 2 & 5 \\ 0 & 0 & 0 \end{array} \right]$$ to RREF and describe the solution set.

    Solution

    Infinitely many solutions

    Matrix: $$\left[ \begin{array}{cc|c} 1 & 2 & 5 \\ 0 & 0 & 0 \end{array} \right]$$ Already in RREF.

    Interpretation:

    • First row: $x + 2y = 5$
    • Second row: $0 = 0$ (no new information)
    • $y$ is free

    Let $y = t$.

    Then $x = 5 - 2t$.

    Solution set: $$(x, y) = (5 - 2t,\ t)$$

  3. Reduce the REF matrix $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 0 & 0 & 4 \end{array} \right]$$ to RREF and determine whether a solution exists.

    Solution

    No solution

    Matrix: $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 0 & 0 & 4 \end{array} \right]$$ Second row says: $$0 = 4$$ Impossible → no solution.

    RREF is the same matrix, because the contradiction is already visible.

  4. Convert the REF matrix $$\left[ \begin{array}{cc|c} 3 & 6 & 9 \\ 0 & 2 & 4 \end{array} \right]$$ into RREF.

    Solution

    One solution

    Matrix: $$\left[ \begin{array}{cc|c} 3 & 6 & 9 \\ 0 & 2 & 4 \end{array} \right]$$ Scale pivots:

    • Row 1 → Row 1 ÷ $3$
    • Row 2 → Row 2 ÷ $2$ $$\left[ \begin{array}{cc|c} 1 & 2 & 3 \\ 0 & 1 & 2 \end{array} \right]$$

    Clear above pivot in column 2:

    • Row 1 → Row 1 $- 2$·Row 2

    RREF: $$\left[ \begin{array}{cc|c} 1 & 0 & -1 \\ 0 & 1 & 2 \end{array} \right]$$ Solution: $(x, y) = (-1, 2)$.

  5. Reduce the REF matrix $$\left[ \begin{array}{cc|c} 1 & 1 & 2 \\ 0 & 1 & 1 \end{array} \right]$$ to RREF and state the solution.

    Solution

    One solution

    Matrix: $$\left[ \begin{array}{cc|c} 1 & 1 & 2 \\ 0 & 1 & 1 \end{array} \right]$$ Clear above pivot in column 2:

    • Row 1 → Row 1 $- 1$·Row 2

    RREF: $$\left[ \begin{array}{cc|c} 1 & 0 & 1 \\ 0 & 1 & 1 \end{array} \right]$$ Solution: $(x, y) = (1, 1)$.